All Questions
8 questions
3votes
1answer
157views
Mail Client - Displaying email details for selected JTable Row
I'm trying to write a very simple IMAP email client in Java. There is one table per account with multiple multiline rows. The last selected row of one of the tables should be displayed in an extra ...
2votes
1answer
121views
MVC pattern in my Repair Shop application
I am currently learning Java programing by building real life business application for repair shops. I am posting this code so I can get critical review, and change my application architecture if ...
1vote
2answers
2kviews
Using decorator and strategy pattern for dynamically generating SQL queries
This is a link to my application that actually runs on the design specified in the image. The idea behind the image is that the SubjectInfoViewer behaves as the ...
1vote
1answer
70views
File-copying Manager
I have the following java class which has many private variables and methods: ...
3votes
1answer
285views
Swing application: Working with GridBagLayout and Mediator pattern
SCENARIO: As a follow-up of this question on Stackoverflow asked few days back, I am working on a swing application(article tagging tool) where the user(on an initial jpanel) would fill up some ...
3votes
1answer
2kviews
Implementation of MVC pattern with paintComponent method
Could someone review my code, with respect to OOP, clean code and MVC pattern? Main app: ...
1vote
1answer
333views
Encapsulating this List<Message> properly
I know that Swing isn't true MVC: Using this modified MVC helps to more completely decouple the model from the view. Leaving aside the veracity of the above claim, the problem I run into is that I ...
3votes
1answer
2kviews
Design Pattern for Swing application
I have a Swing application with no real design pattern. I want to start learning to design Swing or any types of application properly. Here is the main JFrame class....